home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue55 / Splat / types.pas < prev   
Encoding:
Pascal/Delphi Source File  |  2000-01-26  |  155 b   |  14 lines

  1. unit Types;
  2.  
  3. interface
  4.  
  5. // Types I wish Delphi had builtin.
  6.  
  7. type
  8.   NaturalInt = 0..MaxInt;
  9.   PositiveInt = 1..MaxInt;
  10.  
  11. implementation
  12.  
  13. end.
  14.